home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User: China
/
Acorn User China CD-ROM (UK) (Disc A)
/
Acorn User China CD-ROM (UK) (Disc A).bin
/
DEMON
/
MISC
/
NETLITE2.ARC
/
NET
/
c
/
IFACE
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-03-03
|
353 b
|
16 lines
#include <stdio.h>
#include <string.h>
#include "global.h"
#include "iface.h"
#include "misc.h"
struct interface *if_lookup(char *name)
{
register struct interface *iface;
for(iface = ifaces; iface != NULLIF; iface = iface->next)
if(strcmp(iface->name,name) == 0)
break;
return iface;
}